home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Utilities / Unix / WhosOnFirst / structs.h < prev    next >
C/C++ Source or Header  |  1992-12-26  |  309b  |  11 lines

  1. struct record {
  2.     char name[10];        /* User name */
  3.     char tty[10];        /* TTY name */
  4.     char hostname[64];    /* Host Name */
  5.     int marked;        /* Referenced */
  6.     id windowPointer;    /* Pointer to window */
  7.     float x,y;        /* x,y position of icon (screen coords) */
  8.     struct record *next;    /* Pointer to next record in list */
  9.  
  10. };
  11.